From 339747e43865f9e5b610cc1e667d3c44fbd24b1a Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 18 May 1993 22:44:27 +0000 Subject: [PATCH] * lisp.h (malloc, realloc): Declare these to return void *, to avoid conflicts with ANSI header files. --- src/lisp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index a13db81a776..1fdcae2e628 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1292,7 +1292,8 @@ extern int immediate_quit; /* Nonzero means ^G can quit instantly */ extern void debugger (); -extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd (); +extern void *malloc (), *realloc (); +extern char *getenv (), *ctime (), *getwd (); extern long *xmalloc (), *xrealloc (); extern void xfree (); -- 2.30.2